home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-18 | 492 b | 29 lines | [TEXT/R*ch] |
- // (c) copyright 1995,1996, Jon Kalb, Liberty Software
- // Kalb@LibertySoft.com
- // You may freely incorporate this code into any machine-
- // readable project. You may modify this code, but you may
- // not remove this statement.
-
- #ifndef _DOUTSTREAM_
- #define _DOUTSTREAM_
-
- // dout stream header
-
- #include <iostream.h>
-
- #include "debugbuf.h"
- #include "doututils.h"
-
- extern ostream dout;
- static debugbufinit Debugbufinit;
-
- #ifdef NDEBUG
- ds(s)
- #else // NDEBUG
- ds(s) s
- #endif // NDEBUG
-
-
- #endif
-
-